home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-02-24 | 355 b | 20 lines | [TEXT/PJMM] |
- program PrintMultiPage;
-
- uses
- PrintTraps, PrintStuff;
-
- var
- ignoreError: OSErr;
- ignoreResult: BOOLEAN;
- event: EventRecord;
- count: integer;
- myPrintRecord: THPrint;
-
- begin
- myPrintRecord := THPrint(NewHandle(sizeof(TPrint)));
- PrOpen;
- PrintDefault(myPrintRecord);
- ignoreResult := PageSetup(myPrintRecord);
- ignoreResult := Print(myPrintRecord);
-
- end.